home *** CD-ROM | disk | FTP | other *** search
/ Internet Pratica / IPRAT_01.iso / ASP / ASPapp Portal / README.asp < prev    next >
Text File  |  2002-03-13  |  4KB  |  114 lines

  1. <!-- #include file="i_utils.asp" -->
  2. <%
  3. %>
  4. <%
  5.     dim overview
  6.     dim features
  7.     dim setup
  8.     dim configuration
  9.  
  10.  
  11.  
  12.  
  13.  
  14. do_search = request("do_search")
  15. ''' request form keys
  16. ''' request action
  17. action = lcase(request("action"))
  18. ''' action case handler
  19. select case action
  20.  
  21. end select
  22.  
  23. '  no action was specified, so handle the default case(s)
  24.  
  25. %>
  26.  
  27. <!-- #include file='i_header.asp' -->
  28. <!-- #include file='i_menu.asp' -->
  29.  
  30.  
  31. <%
  32. display_errs
  33. display_msg
  34. %>
  35.  
  36. <table class='headerTable'>
  37. <tr>
  38. <td class='headerTD'>
  39. PortalApp Usage Information
  40. </td>
  41. </tr>
  42. </table>
  43.         <br><br>
  44. <B>[Overview and License]</B><br><br>
  45. This is a freeware Portal application designed to be a useful example of using ASPapp.com and Microsoft's Active Server Pages to create database-driven Web sites.
  46. By downloading and using this source code <B>you agree to the following licences and terms of use</B> statement:<br>
  47. <textarea rows=12 cols=90>
  48. <!--#include file='license.txt'-->
  49. </textarea>
  50.  
  51. <br><br>
  52. We hope you find the application useful and are able to offer this application for free because we do not provide support. If you do need support
  53. visit the forums area at ASPapp.com, or contact us at: support@aspapp.com, but there is a minimum $99 fee (per incident) for email or phone support that can be paid via credit card.
  54. <br><br>
  55.         <B>[Features]</B><br><br>
  56. This version features basic user, link, and content management. We have not found a
  57. more robust freeware .asp portal application. For extended features, customization, and upgraded versions
  58. visit <A href='http://www.aspapp.com'>ASPapp.com</A>
  59. <ul>
  60. <li>user management
  61. <li>heirarchical category management
  62. <li>link/listing management
  63. <li>content/article management
  64. <li>HTML content authoring 
  65. <li>browser-based administration
  66. <li>header and footer wrapper templates
  67. <li>standard <A href='http://msdn.microsoft.com/library/default.asp?url=/nhp/Default.asp?contentid=28000522'>Microsoft ASP source code</A>
  68. <li>standard .css style sheets
  69. </ul>
  70.         <B>[Installation and Setup]</B><br><br>
  71.  
  72. This software will run on Microsoft IIS4+ Web servers running WinNT, Win2K, and WinXP
  73.  
  74. To install..
  75.  
  76. <ol>
  77. <li>unzip the .zip file to a Web shared (alias or virtual created via IIS) folder
  78. <li>make sure the '/data' folder is write accesible to the IUSR_MACHINE account
  79. <li>read configuration notes below..
  80. </ol>
  81.         <B>[Configuration]</B><br><br>
  82.  
  83. Here's what you need to change...
  84. <ul>
  85. <li> make sure the database connection paths (cn.Open, user_cn,Open) in 'i_utils' are valid paths to the database
  86. <li> specify the correct 'report errors' email address in 'links.asp'
  87. </ul>
  88.  
  89. The most common reason for problems is that the Internet Guest account (IUSR_MACHINE) does not
  90. have 'Write' permissions on the database file (.mdb). To fix this problem, use the Security tab in
  91. Windows Explorer to adjust the properties for this file so that the Internet Guest account has the
  92. correct permissions. When using Microsoft Access databases with ADO, it is also necessary
  93. to give the Internet Guest account Write permissions on the directory containing the .mdb file.
  94. This is because Jet creates an .ldb file to handle database locking. You may also need to give
  95. read/write permission on the Temp folder because Jet may create temporary files in this directory.
  96.  
  97.  
  98.  
  99.  
  100. <!-- #include file=i_footer.asp -->
  101.  
  102.  
  103. <%
  104. ':: assure that any db resources are freed
  105. on error resume next
  106. rs.Close
  107. set rs = NOTHING
  108. cn.Close
  109. set cn = NOTHING
  110. user_cn.Close
  111. set user_cn = NOTHING
  112. on error goto 0
  113. %>
  114.